home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
programming
/
other
/
wild
/
include
/
clib
/
wildprefs_protos.h
< prev
Wrap
C/C++ Source or Header
|
1999-05-25
|
720b
|
29 lines
#ifndef CLIB_WILDPREFS_PROTOS_H
#define CLIB_WILDPREFS_PROTOS_H
/*
** $VER: wildprefs_protos.h 2.00 (8.10.98)
**
** WildPrefs.library prototypes.
**
*/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef WILDPREFS_H
#include <libraries/wildprefs.h>
#endif
struct MinList *wpGetHandledList();
struct AppPrefs *wpFindNamedApp(char *name);
BOOL wpLoadPrefs(struct AppPrefs *app,struct TagItem *tags);
BOOL wpSetPrefs(struct AppPrefs *app,struct TagItem *tags);
BOOL wpTestPrefs(struct AppPrefs *app);
BOOL wpUsePrefs(struct AppPrefs *app);
BOOL wpSavePrefs(struct AppPrefs *app);
BOOL wpFreePrefs(struct AppPrefs *app);
ULONG wpGetAppTag(struct AppPrefs *app,ULONG tagdata,ULONG def);
#endif